home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
System Booster
/
System Booster.iso
/
SYS
/
s
/
NextParagraph.bed
< prev
next >
Wrap
Text File
|
1996-09-26
|
468b
|
46 lines
/*
** $VER: NextParagraph.bed 1.0 (06.01.96)
**
** Move the cursor to the start of the next paragraph
*/
OPTIONS RESULTS
str = ' ' || '09'X
SetLockInput ON
SetLockDisplay ON
MoveSOL
DO FOREVER
GetLine
IF COMPRESS(RESULT,str) = "" THEN BREAK
MoveDown
IF RC ~= 0 THEN DO
MoveEOL
EXIT
END
END
DO FOREVER
GetLine
IF COMPRESS(RESULT,str) ~= "" THEN BREAK
MoveDown
IF RC ~= 0 THEN DO
MoveEOL
EXIT
END
END
SetLockInput OFF
SetLockDisplay OFF